home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / include / funcs / realtime_funcs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  1.2 KB  |  36 lines

  1. #ifndef  FUNCS_REALTIME_FUNCS_H
  2. #define  FUNCS_REALTIME_FUNCS_H
  3.  
  4. /*
  5. **
  6. ** Function declarations for ACE Basic
  7. **
  8. ** Note: Translated to ACE by Nils Sjoholm
  9. **
  10. ** Date: 11-Oct-95 TO 14-Oct-95
  11. **
  12. */              
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. /*--- functions in V37 OR higher (Release 2.04) ---*/
  19.  
  20. /* Locks */
  21.  
  22. DECLARE FUNCTION APTR LockRealTime( LONGINT lockType ) LIBRARY realtime
  23. DECLARE FUNCTION UnlockRealTime( APTR lock ) LIBRARY realtime
  24.  
  25. /* Conductor */
  26.  
  27. DECLARE FUNCTION STRUCTPTR CreatePlayerA( STRUCTPTR tagList ) LIBRARY realtime
  28. DECLARE FUNCTION DeletePlayer( STRUCTPTR player ) LIBRARY realtime
  29. DECLARE FUNCTION BOOL SetPlayerAttrsA( STRUCTPTR player, STRUCTPTR tagList ) LIBRARY realtime
  30. DECLARE FUNCTION LONGINT SetConductorState( STRUCTPTR player, LONGINT state, LONGINT time ) LIBRARY realtime
  31. DECLARE FUNCTION BOOL ExternalSync( STRUCTPTR player, LONGINT minTime, LONGINT maxTime ) LIBRARY realtime
  32. DECLARE FUNCTION STRUCTPTR NextConductor( STRUCTPTR previousConductor ) LIBRARY realtime
  33. DECLARE FUNCTION STRUCTPTR FindConductor( STRPTR _NAME ) LIBRARY realtime
  34. DECLARE FUNCTION LONGINT GetPlayerAttrsA( STRUCTPTR player, STRUCTPTR tagList ) LIBRARY realtime
  35. #endif   /* FUNCS_REALTIME_FUNCS_H */
  36.